home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / e_to_l / itgraph / msvc15 / itgdmdoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-15  |  921 b   |  40 lines

  1. // itgdmdoc.h : interface of the CItgDemoDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CItgDemoDoc : public CDocument
  6. {
  7. protected: // create from serialization only
  8.     CItgDemoDoc();
  9.     DECLARE_DYNCREATE(CItgDemoDoc)
  10.  
  11. // Attributes
  12. public:
  13. // Operations
  14. public:
  15.     
  16. // Implementation
  17. public:
  18.     virtual ~CItgDemoDoc();
  19.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  20. #ifdef _DEBUG
  21.     virtual void AssertValid() const;
  22.     virtual void Dump(CDumpContext& dc) const;
  23. #endif
  24.  
  25. protected:
  26.     virtual BOOL OnNewDocument();
  27.  
  28. // Generated message map functions
  29. protected:
  30.     //{{AFX_MSG(CItgDemoDoc)
  31.     afx_msg void OnFileSaveAs();
  32.     afx_msg void OnFileOpen();
  33.     afx_msg void OnFileNew();
  34.     afx_msg void OnFileSave();
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40.